Impairment Search Screen
This business rule displays Impairment table. It is used to configure OIPA's impairment summary table, which is accessed by clicking the Assessment(Impairment) link. If this rule is not configured, a default table will display the impairment summary.
| Element/Tag | Attributes | Parent Element | Description | Element/Attribute Value |
|---|---|---|---|---|
|
<ImpairmentSearchScreen> |
The opening and closing tags of the business rule. |
|||
|
<ImpairmentSearch> |
LEVELCODE |
<ImpairmentSearchScreen> |
This attribute defines the level of the impairment. It will come from AsCode. |
|
|
CATEGORYCODE |
This attribute defines the category of the impairment. This will come from AsCode. |
|||
|
<Results> |
<ImapirmentSearch> |
Required element: This element defines the results of the Impairment search. |
||
|
<Hidden> |
Optional element: This element defines if results in the specified status should be hidden from view. Purpose: The <Hidden> tag is used to control the visibility of certain impairment results on the Impairment Search Screen. Specifically, it enables you to hide impairment records with certain status codes so that they do not appear in the search results displayed to the user. Example: <Hidden><StatusCode>12</StatusCode></Hidden> means that any impairment with a status code of 12 will be excluded (hidden) from the results table shown to users. Use the <Hidden> tag to exclude records with specific impairment statuses from being displayed to users in the summary table. |
|||
|
<StatusCode> |
Optional element: This element identifies the Impairment's status. A code defined for the AsCodeImpairmentStatus code name. |
|||
|
<Table> |
|
<Results> |
Required element: This element controls the display of the requirement results table. See the Table Element page for more information on configuring this element. |
|
|
NAME |
||||
|
<Column> |
|
Optional element: This element defines the width of columns in the results table, the alignment of the column's data and the format of the column's data. |
||
|
WIDTH |
Integer |
|||
|
ALIGN |
Left: The information in the column will be left-aligned. Right: The information in the column will be right-aligned. Center: The information in the column will be centered. |
|||
|
FORMAT |
Text: The information in the column will be formatted as simple text. Currency: The information in the column will be formatted as currency. Date: The information in the column will be formatted as a date. |
|||
|
<Group> |
Optional element: This element identifies the database table from which the Impairment information should be extracted. Example '<Group>Client</Group>' indicates that the data should come from the AsClient database table. The entity name that corresponds to the database table from which the Impairment information should be extracted. |
Note: When a business rules is configured, the page loads with the default column unless it is manually selected at respective level and category and refreshed. Clicking Refresh reloads the specific level/category configuration.
XML Schema
<ImpairmentSearchScreen>
<ImapirmentSearch LEVELCODE="01" CATEGORYCODE="02">
<Results>
<Hidden> <StatusCode>12</StatusCode> <StatusCode>15</StatusCode> </Hidden>
<Table>
<See the TableElement page>
</Table>
</Results>
</ImpairmentSearch>
</ImpairmentSearchScreen>
XML Example
<ImpairmentSearchScreen>
<ImapirmentSearch LEVELCODE="01" CATEGORYCODE="02" >
<Results>
<Table>
<Column WIDTH="200" ALIGN="LEFT">
<Name>Message</Name>
<Display>Impairment Name</Display>
<DataType>Text</DataType>
<Group>Impairment</Group>
</Column>
<Column WIDTH="200" ALIGN="LEFT">
<Name>Name</Name>
<Display>Insured</Display>
<DataType>Text</DataType>
<Group>Client</Group>
</Column>
<Column WIDTH="50" ALIGN="LEFT">
<Name>TaxID</Name>
<Display>Tax ID</Display>
<DataType>Text</DataType>
<Group>Client</Group>
</Column>
<Column WIDTH="50" ALIGN="LEFT">
<Name>Status</Name>
<Display>Status</Display>
<DataType>Text</DataType>
</Column>
<Column WIDTH="200" ALIGN="LEFT">
<Name>UpdatedGMT</Name>
<Display>Updated</Display>
<DataType>Date</DataType>
<Group>Impairment</Group>
</Column>
</Table>
</Results>
</ImpairmentSearch>
</ImpairmentSearchScreen>